<SCRIPT language=JavaScript><!--

var count = 0; var text = "    .. ..   ";
scroll();

  function  scroll () {
    window.status = text.substring (count, text.length) + text.substring
(0, count)
    if (count < text.length)

      count ++;
    else
      count = 0;

    setTimeout ("scroll()", 250);
    }
// --></SCRIPT>
---------------------------------
 2
---------------------------
<!-- TWO STEPS TO INSTALL CLASSIC SCROLL:

   1.  Paste the coding into the HEAD of your HTML document
   2.  Copy the onLoad event handler into the BODY tag  -->

<!-- STEP ONE: Copy this code into the HEAD of your HTML document  -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- Begin
function scrollit(seed) {
var m1  = "    ";
var m2  = "          ";
var m3  = "     ";
var m4  = "ta3ab@hotmail.com";
var msg=m1+m2+m3+m4;
var out = " ";
var c   = 1;
if (seed > 100) {
seed--;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 100 && seed > 0) {
for (c=0 ; c < seed ; c++) {
out+=" ";
}
out+=msg;
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else if (seed <= 0) {
if (-seed < msg.length) {
out+=msg.substring(-seed,msg.length);
seed--;
window.status=out;
cmd="scrollit("+seed+")";
timerTwo=window.setTimeout(cmd,100);
}
else {
window.status=" ";
timerTwo=window.setTimeout("scrollit(100)",75);
      }
   }
}
// End -->
</SCRIPT>

<!-- STEP TWO: Add this onLoad event handler into the BODY tag  -->

<BODY onLoad="scrollit(100)">

<p><center>
<font face="arial, helvetica" size="-2"><br>
 <a href="http://javascriptsource.com"></a></font>
</center><p>

<!-- Script Size:  1.35 KB  -->
